home *** CD-ROM | disk | FTP | other *** search
/ One Click 14 / OneClick14.iso / Ferramentas / Convert XLS to Pdf / xls2pdf_setup.exe / {app} / lib / ps2ps < prev    next >
Encoding:
Text File  |  2002-10-24  |  459 b   |  22 lines

  1. #!/bin/sh
  2. # $Id: ps2ps,v 1.6 2002/10/24 14:23:15 giles Exp $
  3. # "Distill" PostScript.
  4.  
  5. OPTIONS="-dSAFER"
  6. while true
  7. do
  8.     case "$1" in
  9.     -*) OPTIONS="$OPTIONS $1" ;;
  10.     *)  break ;;
  11.     esac
  12.     shift
  13. done
  14.  
  15. if [ $# -ne 2 ]; then
  16.     echo "Usage: `basename $0` [options] input.ps output.ps" 1>&2
  17.     echo "  e.g. `basename $0` -sPAPERSIZE=a4 input.ps output.ps" 1>&2
  18.     exit 1
  19. fi
  20.  
  21. exec gs -q -sDEVICE=pswrite "-sOutputFile=$2" -dNOPAUSE -dBATCH $OPTIONS "$1"
  22.